Dynomotion

Group: DynoMotion Message: 12053 From: peterpan1e6 Date: 8/2/2015
Subject: Using KFlop for machine automation

Hi Tom


We are building an robot for doing packaging and we have the basics running in G-Code. We need to do the following next and need to know what would be the best strategy:

1) Using the G-code screen is fine for prototyping. But ideally we would like the machine to operate autonomously without requiring the operator to Press buttons for Init, Home and to start the G-code. What would be the best way to do this?

2) We would like to keep some statistics such as a counter and time stamp on the number of operations. One can define parameters in G code for counting but is there a way to do the time stamp and write this to a file? What would be the best way to do this?

Group: DynoMotion Message: 12054 From: Hardy Family Date: 8/2/2015
Subject: Re: Using KFlop for machine automation
Well I'm not Tom, but here's what we do which might be of some help to you regarding your first question.

Our machine is a conventional CNC mill, but it can also run in a limited autonomous "manual" mode whether or not there is a PC connected.  Basically, it allows homing and jogging the axes using an MPG handwheel.

The way we have architected it is to put most of the kflop software in a single program running as thread 7, and have that thread configured to run at power-up time.  That program runs all the time (in a loop) and waits for various I/O signals.  When a signal occurs, it runs appropriate routines within itself.

So that takes care of your requirement to automatically INIT at power-up, and you could automatically HOME (or wait for a PLC signal etc. to home).

Actually running G-code autonomously is something we have not required. It currently requires a PC connected and running the interpreter.  Here's a few approaches I would consider, from easiest to hardest:

- If the signal to start the g-code comes from a PLC, then attach the PLC to the PC (somehow) and modify the PC CNC program to execute g-code on command.
- otherwise, if the PLC connects to the kflop, then the kflop can be programmed to signal the PC to start running the g-code.
- forget g-code, and write some kflop C code which directly performs the motion you want (using the Move() functions etc.)  For a robot application, this would not be too difficult since (presumably) you don't need super accurate path following, but reasonably accurate timing and end-points.
- Port the g-code interpreter code to run directly on the kflop.  Thread 7 can run up to 320k of code, so this would be theoretically possible (I once ported the NGC interpreter to a device with only 256k flash memory).  The g-code would also need to be flashed in, as a big string constant.

One advantage of getting rid of g-code is that the full power and versatility of C may be brought to bear, and you can completely ditch the PC and its associated MTBF.  As you are aware, g-code has very limited ability to react to real-world conditions.  If your application has any sort of feedback (such as force sensors, proximity detectors etc.) then C would be a good choice. 

The down-side is the amount of engineering man-power required for development and maintenance.  It's hard to compare apples and oranges, but from our experience implementing touch probing routines, C emulating g-code takes 5-20 x the effort of real g-code.  (We split our probing into a C routine which takes care of the math and low-level choreography for probing the center of a sphere, and a g-code program which coordinates multiple sphere probes - this seemed the optimum split for our requirements).

Maybe I'm biassed as a C programmer, but I find C code to be more maintainable and understandable than the equivalent g-code.  Compare these:

g-code:
#45 = [atan[#38+#14]/[#37] + #16]

C:
a_angle = RAD_TO_DEG(atan2(pos_y + offset_y, pos_x)) + offset_a;

QED :-)

Regards,
SJH


On Sun, Aug 2, 2015 at 4:09 AM, eondekoker@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:
 

Hi Tom


We are building an robot for doing packaging and we have the basics running in G-Code. We need to do the following next and need to know what would be the best strategy:

1) Using the G-code screen is fine for prototyping. But ideally we would like the machine to operate autonomously without requiring the operator to Press buttons for Init, Home and to start the G-code. What would be the best way to do this?

2) We would like to keep some statistics such as a counter and time stamp on the number of operations. One can define parameters in G code for counting but is there a way to do the time stamp and write this to a file? What would be the best way to do this?


Group: DynoMotion Message: 12056 From: Eon de Koker Date: 8/2/2015
Subject: Re: Using KFlop for machine automation

Thanks SJH

 

It looks like I need to look at the C programming. I will have a look at the move instructions and the SetBet/ReadBit etc.

 

Any ideas on how to keep counters in Non volatile memory and to read them from a PC app? We need to count the number of cycles, measure the cycle time and then retrieve that in some way from a PC.

 

Regards

 

Eon

 

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Sunday, 02 August 2015 21:24
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Well I'm not Tom, but here's what we do which might be of some help to you regarding your first question.

Our machine is a conventional CNC mill, but it can also run in a limited autonomous "manual" mode whether or not there is a PC connected.  Basically, it allows homing and jogging the axes using an MPG handwheel.

The way we have architected it is to put most of the kflop software in a single program running as thread 7, and have that thread configured to run at power-up time.  That program runs all the time (in a loop) and waits for various I/O signals.  When a signal occurs, it runs appropriate routines within itself.

So that takes care of your requirement to automatically INIT at power-up, and you could automatically HOME (or wait for a PLC signal etc. to home).

Actually running G-code autonomously is something we have not required. It currently requires a PC connected and running the interpreter.  Here's a few approaches I would consider, from easiest to hardest:

- If the signal to start the g-code comes from a PLC, then attach the PLC to the PC (somehow) and modify the PC CNC program to execute g-code on command.

- otherwise, if the PLC connects to the kflop, then the kflop can be programmed to signal the PC to start running the g-code.

- forget g-code, and write some kflop C code which directly performs the motion you want (using the Move() functions etc.)  For a robot application, this would not be too difficult since (presumably) you don't need super accurate path following, but reasonably accurate timing and end-points.

- Port the g-code interpreter code to run directly on the kflop.  Thread 7 can run up to 320k of code, so this would be theoretically possible (I once ported the NGC interpreter to a device with only 256k flash memory).  The g-code would also need to be flashed in, as a big string constant.

One advantage of getting rid of g-code is that the full power and versatility of C may be brought to bear, and you can completely ditch the PC and its associated MTBF.  As you are aware, g-code has very limited ability to react to real-world conditions.  If your application has any sort of feedback (such as force sensors, proximity detectors etc.) then C would be a good choice. 

The down-side is the amount of engineering man-power required for development and maintenance.  It's hard to compare apples and oranges, but from our experience implementing touch probing routines, C emulating g-code takes 5-20 x the effort of real g-code.  (We split our probing into a C routine which takes care of the math and low-level choreography for probing the center of a sphere, and a g-code program which coordinates multiple sphere probes - this seemed the optimum split for our requirements).

Maybe I'm biassed as a C programmer, but I find C code to be more maintainable and understandable than the equivalent g-code.  Compare these:

g-code:

#45 = [atan[#38+#14]/[#37] + #16]

C:

a_angle = RAD_TO_DEG(atan2(pos_y + offset_y, pos_x)) + offset_a;

QED :-)

 

Regards,

SJH

 

On Sun, Aug 2, 2015 at 4:09 AM, eondekoker@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:

 

Hi Tom

 

We are building an robot for doing packaging and we have the basics running in G-Code. We need to do the following next and need to know what would be the best strategy:

1) Using the G-code screen is fine for prototyping. But ideally we would like the machine to operate autonomously without requiring the operator to Press buttons for Init, Home and to start the G-code. What would be the best way to do this?

2) We would like to keep some statistics such as a counter and time stamp on the number of operations. One can define parameters in G code for counting but is there a way to do the time stamp and write this to a file? What would be the best way to do this?

 

Group: DynoMotion Message: 12057 From: Tom Kerekes Date: 8/3/2015
Subject: Re: Using KFlop for machine automation
Hi Eon,

Do you plan to have the PC connected at all times?  If so I would suggest you might make use of writing to a Disk File for non-volatile storage.  The other option is KFLOP's Flash memory, but that has a limited number of write cycles (10,000 writes minimum (100,000 typical) per each of the 16 64KByte sectors).

Regards
TK


Group: DynoMotion Message: 12058 From: Hardy Family Date: 8/3/2015
Subject: Re: Using KFlop for machine automation
Tom, is there any write-access to the flash from kflop C code?  I'm looking for ways to simplify the user program flashing process for when we need to send upgrades/fixes to our customers.

Also, we have a fairly large number of machine settings which are stored in a const double[] array.  When a setting is updated, we just cast away the const and write the value, but then there is an additional step which is to flash the user memory so the settings are preserved over power cycles.  Currently we require the user to run KMotion.exe and press the "flash user programs" button, but we would like to be able to initiate this within the kflop.

Regards,
SJH


On Mon, Aug 3, 2015 at 10:46 AM, Tom Kerekes tk@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:
 

Hi Eon,

Do you plan to have the PC connected at all times?  If so I would suggest you might make use of writing to a Disk File for non-volatile storage.  The other option is KFLOP's Flash memory, but that has a limited number of write cycles (10,000 writes minimum (100,000 typical) per each of the 16 64KByte sectors).

Regards
TK


Group: DynoMotion Message: 12059 From: Tom Kerekes Date: 8/3/2015
Subject: Re: Using KFlop for machine automation
Hi SJH,

Please see this Thread regarding programmatically flashing a new Version to KFLOP:
Also the Console Command "Flash" will flash User Data to KFLOP.

Which is the same as calling the function iFLASH in KFLOP.

Both take a few seconds to complete.

For making use of KFLOP's spare 1MByte of Flash area see the \C Programs\FlashNonVolatile examples

HTH
Regards
TK



Group: DynoMotion Message: 12060 From: Hardy Family Date: 8/3/2015
Subject: Re: Using KFlop for machine automation
Oh that's neat.  I will migrate our settings to use the high Meg of flash instead of the program code.  What is the flash chip part number, so I can optimize page writes etc.?

Regards,
SJH


On Mon, Aug 3, 2015 at 11:35 AM, Tom Kerekes tk@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:
 

Hi SJH,

Please see this Thread regarding programmatically flashing a new Version to KFLOP:
Also the Console Command "Flash" will flash User Data to KFLOP.

Which is the same as calling the function iFLASH in KFLOP.

Both take a few seconds to complete.

For making use of KFLOP's spare 1MByte of Flash area see the \C Programs\FlashNonVolatile examples

HTH
Regards
TK



Group: DynoMotion Message: 12061 From: Tom Kerekes Date: 8/3/2015
Subject: Re: Using KFlop for machine automation
Hi SJH,

We may change the part in the future but currently it is SST39VF1602-70-4C-EKE

Our Flash routines currently only make use of the 64KByte pages.  That is the ProgFlash function assumes the Destination address is the beginning of a Block, will first erase that block, then write the data, and if more than a block of data is specified then subsequent blocks will be erased before writing.

Regards
TK


Group: DynoMotion Message: 12062 From: Eon de Koker Date: 8/4/2015
Subject: Re: Using KFlop for machine automation

Hi

 

As SJH suggested, I can write the equivalent on the G-Code in one C program. But I am still not clear on how to do the following:

1)      How to pass parameters to C programs using the Dynomotion Software. I see on the Tool  Setup that there is a VAR field when assigning a programme to a button. Is it possible to pass a parameter to the C program and if so where can I find an example?

2)      Assuming that we will have a PC permanently connected, how can one start a C program or initialise KFLOP with parameters (such as the last value of the counter saved to disk?) from a PC based VB or C# application?

3)      How can the C program pass parameters back to the PC  program(such as the counter value)?

 

Regards

 

Eon

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Monday, 03 August 2015 19:46
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Hi Eon,



Do you plan to have the PC connected at all times?  If so I would suggest you might make use of writing to a Disk File for non-volatile storage.  The other option is KFLOP's Flash memory, but that has a limited number of write cycles (10,000 writes minimum (100,000 typical) per each of the 16 64KByte sectors).



Regards

TK

 

 


From: "'Eon de Koker' eondekoker@... [DynoMotion]" <DynoMotion@yahoogroups.com>
To: DynoMotion@yahoogroups.com
Sent: Sunday, August 2, 2015 11:53 PM
Subject: RE: [DynoMotion] Using KFlop for machine automation

 

 

Thanks SJH

 

It looks like I need to look at the C programming. I will have a look at the move instructions and the SetBet/ReadBit etc.

 

Any ideas on how to keep counters in Non volatile memory and to read them from a PC app? We need to count the number of cycles, measure the cycle time and then retrieve that in some way from a PC.

 

Regards

 

Eon

 

 

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Sunday, 02 August 2015 21:24
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Well I'm not Tom, but here's what we do which might be of some help to you regarding your first question.

Our machine is a conventional CNC mill, but it can also run in a limited autonomous "manual" mode whether or not there is a PC connected.  Basically, it allows homing and jogging the axes using an MPG handwheel.

The way we have architected it is to put most of the kflop software in a single program running as thread 7, and have that thread configured to run at power-up time.  That program runs all the time (in a loop) and waits for various I/O signals.  When a signal occurs, it runs appropriate routines within itself.

So that takes care of your requirement to automatically INIT at power-up, and you could automatically HOME (or wait for a PLC signal etc. to home).

Actually running G-code autonomously is something we have not required. It currently requires a PC connected and running the interpreter.  Here's a few approaches I would consider, from easiest to hardest:

- If the signal to start the g-code comes from a PLC, then attach the PLC to the PC (somehow) and modify the PC CNC program to execute g-code on command.

- otherwise, if the PLC connects to the kflop, then the kflop can be programmed to signal the PC to start running the g-code.

- forget g-code, and write some kflop C code which directly performs the motion you want (using the Move() functions etc.)  For a robot application, this would not be too difficult since (presumably) you don't need super accurate path following, but reasonably accurate timing and end-points.

- Port the g-code interpreter code to run directly on the kflop.  Thread 7 can run up to 320k of code, so this would be theoretically possible (I once ported the NGC interpreter to a device with only 256k flash memory).  The g-code would also need to be flashed in, as a big string constant.

One advantage of getting rid of g-code is that the full power and versatility of C may be brought to bear, and you can completely ditch the PC and its associated MTBF.  As you are aware, g-code has very limited ability to react to real-world conditions.  If your application has any sort of feedback (such as force sensors, proximity detectors etc.) then C would be a good choice. 

The down-side is the amount of engineering man-power required for development and maintenance.  It's hard to compare apples and oranges, but from our experience implementing touch probing routines, C emulating g-code takes 5-20 x the effort of real g-code.  (We split our probing into a C routine which takes care of the math and low-level choreography for probing the center of a sphere, and a g-code program which coordinates multiple sphere probes - this seemed the optimum split for our requirements).

Maybe I'm biassed as a C programmer, but I find C code to be more maintainable and understandable than the equivalent g-code.  Compare these:

g-code:

#45 = [atan[#38+#14]/[#37] + #16]

C:

a_angle = RAD_TO_DEG(atan2(pos_y + offset_y, pos_x)) + offset_a;

QED :-)

 

Regards,

SJH

 

On Sun, Aug 2, 2015 at 4:09 AM, eondekoker@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:

 

Hi Tom

 

We are building an robot for doing packaging and we have the basics running in G-Code. We need to do the following next and need to know what would be the best strategy:

1) Using the G-code screen is fine for prototyping. But ideally we would like the machine to operate autonomously without requiring the operator to Press buttons for Init, Home and to start the G-code. What would be the best way to do this?

2) We would like to keep some statistics such as a counter and time stamp on the number of operations. One can define parameters in G code for counting but is there a way to do the time stamp and write this to a file? What would be the best way to do this?

 

 

Group: DynoMotion Message: 12063 From: Tom Kerekes Date: 8/4/2015
Subject: Re: Using KFlop for machine automation
Hi Eon,

For KFLOP to have access to the PC Disk some application (like KMotionCNC) must be running for the KFLOP requests to be somehow handled.

KFLOP can currently perform write operations to the PC Disk using fopen, fprintf, fclose calls.  But can not directly read (writes are easier as they can be simply pushed out through the data pipeline to the PC, where reads require round trip communications, handshaking, and delays).  We are working on adding fgets read disk calls for some future release.

However another way to indirectly read from disk is to include a file in a C Program as C Statements.  In this way the data is compiled right into the C Program and downloaded to KFLOP.  For example you might write your last Count to a file as:

#define LAST_COUNT 12345

Then include that into a C Program and make use of it to initialize a Count in KFLOP ie:

persist.UserData[xxx] = LAST_COUNT:

KMotionCNC allows an Action to be performed on start up.  You might make this Compile (including the include file), download, and execute some program to recover the previous count.

Let me know how much of this makes sense.

Regards
TK



Group: DynoMotion Message: 12064 From: Hardy Family Date: 8/4/2015
Subject: Re: Using KFlop for machine automation
Sample code is in KflopToKMotionCNCFunctions.c in the sample C programs.

The way we pass parameters, which are representable as double precision numbers, is to set g-code variables then have the kflop C program read them (for parameters) and write them back (for results).

Another technique we use frequently is to define custom M codes (M100-119) which allow passing the P,Q and R values in persist variables.  This is good if you only need 3 parameters.  Of course, additional parameters can be passed in g-code variables.  The 'VAR' field specifies the persist variable for P, then Q and R follow consecutively.

Can't really help with C# or VB, but I imagine it's similar to what you would do for C++.  There are some API functions to execute C code on the kflop.

Regards,
SJH


On Tue, Aug 4, 2015 at 11:38 AM, 'Eon de Koker' eondekoker@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:
 

Hi

 

As SJH suggested, I can write the equivalent on the G-Code in one C program. But I am still not clear on how to do the following:

1)      How to pass parameters to C programs using the Dynomotion Software. I see on the Tool  Setup that there is a VAR field when assigning a programme to a button. Is it possible to pass a parameter to the C program and if so where can I find an example?

2)      Assuming that we will have a PC permanently connected, how can one start a C program or initialise KFLOP with parameters (such as the last value of the counter saved to disk?) from a PC based VB or C# application?

3)      How can the C program pass parameters back to the PC  program(such as the counter value)?

 

Regards

 

Eon

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Monday, 03 August 2015 19:46


To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Hi Eon,



Do you plan to have the PC connected at all times?  If so I would suggest you might make use of writing to a Disk File for non-volatile storage.  The other option is KFLOP's Flash memory, but that has a limited number of write cycles (10,000 writes minimum (100,000 typical) per each of the 16 64KByte sectors).



Regards

TK

 

 


From: "'Eon de Koker' eondekoker@... [DynoMotion]" <DynoMotion@yahoogroups.com>
To: DynoMotion@yahoogroups.com
Sent: Sunday, August 2, 2015 11:53 PM
Subject: RE: [DynoMotion] Using KFlop for machine automation

 

 

Thanks SJH

 

It looks like I need to look at the C programming. I will have a look at the move instructions and the SetBet/ReadBit etc.

 

Any ideas on how to keep counters in Non volatile memory and to read them from a PC app? We need to count the number of cycles, measure the cycle time and then retrieve that in some way from a PC.

 

Regards

 

Eon

 

 

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Sunday, 02 August 2015 21:24
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Well I'm not Tom, but here's what we do which might be of some help to you regarding your first question.

Our machine is a conventional CNC mill, but it can also run in a limited autonomous "manual" mode whether or not there is a PC connected.  Basically, it allows homing and jogging the axes using an MPG handwheel.

The way we have architected it is to put most of the kflop software in a single program running as thread 7, and have that thread configured to run at power-up time.  That program runs all the time (in a loop) and waits for various I/O signals.  When a signal occurs, it runs appropriate routines within itself.

So that takes care of your requirement to automatically INIT at power-up, and you could automatically HOME (or wait for a PLC signal etc. to home).

Actually running G-code autonomously is something we have not required. It currently requires a PC connected and running the interpreter.  Here's a few approaches I would consider, from easiest to hardest:

- If the signal to start the g-code comes from a PLC, then attach the PLC to the PC (somehow) and modify the PC CNC program to execute g-code on command.

- otherwise, if the PLC connects to the kflop, then the kflop can be programmed to signal the PC to start running the g-code.

- forget g-code, and write some kflop C code which directly performs the motion you want (using the Move() functions etc.)  For a robot application, this would not be too difficult since (presumably) you don't need super accurate path following, but reasonably accurate timing and end-points.

- Port the g-code interpreter code to run directly on the kflop.  Thread 7 can run up to 320k of code, so this would be theoretically possible (I once ported the NGC interpreter to a device with only 256k flash memory).  The g-code would also need to be flashed in, as a big string constant.

One advantage of getting rid of g-code is that the full power and versatility of C may be brought to bear, and you can completely ditch the PC and its associated MTBF.  As you are aware, g-code has very limited ability to react to real-world conditions.  If your application has any sort of feedback (such as force sensors, proximity detectors etc.) then C would be a good choice. 

The down-side is the amount of engineering man-power required for development and maintenance.  It's hard to compare apples and oranges, but from our experience implementing touch probing routines, C emulating g-code takes 5-20 x the effort of real g-code.  (We split our probing into a C routine which takes care of the math and low-level choreography for probing the center of a sphere, and a g-code program which coordinates multiple sphere probes - this seemed the optimum split for our requirements).

Maybe I'm biassed as a C programmer, but I find C code to be more maintainable and understandable than the equivalent g-code.  Compare these:

g-code:

#45 = [atan[#38+#14]/[#37] + #16]

C:

a_angle = RAD_TO_DEG(atan2(pos_y + offset_y, pos_x)) + offset_a;

QED :-)

 

Regards,

SJH

 

On Sun, Aug 2, 2015 at 4:09 AM, eondekoker@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:

 

Hi Tom

 

We are building an robot for doing packaging and we have the basics running in G-Code. We need to do the following next and need to know what would be the best strategy:

1) Using the G-code screen is fine for prototyping. But ideally we would like the machine to operate autonomously without requiring the operator to Press buttons for Init, Home and to start the G-code. What would be the best way to do this?

2) We would like to keep some statistics such as a counter and time stamp on the number of operations. One can define parameters in G code for counting but is there a way to do the time stamp and write this to a file? What would be the best way to do this?

 

 


Group: DynoMotion Message: 12065 From: Eon de Koker Date: 8/4/2015
Subject: Re: Using KFlop for machine automation

Hi Tom and SJH

 

Thanks. Let me see if I understood you correctly:

1)      KFlop can write to a file on the PC. I see there is a WriteFile.c example. So data output of the counter from C to the PC is fine

2)      For data input I see there is a UserPersist Array. I see there are examples of using the array (GetPersist and SetPersist) in the C program. Also, I see that the M commands in G-code can be set up with an action referencing the UserPersist Array number.  The missing component is how to get/set the UserPersist Array value from C#. Is there an example for this?

 

 

Regards

 

Eon

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Tuesday, 04 August 2015 21:21
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Hi Eon,

 

For KFLOP to have access to the PC Disk some application (like KMotionCNC) must be running for the KFLOP requests to be somehow handled.

 

KFLOP can currently perform write operations to the PC Disk using fopen, fprintf, fclose calls.  But can not directly read (writes are easier as they can be simply pushed out through the data pipeline to the PC, where reads require round trip communications, handshaking, and delays).  We are working on adding fgets read disk calls for some future release.

 

However another way to indirectly read from disk is to include a file in a C Program as C Statements.  In this way the data is compiled right into the C Program and downloaded to KFLOP.  For example you might write your last Count to a file as:

 

#define LAST_COUNT 12345

 

Then include that into a C Program and make use of it to initialize a Count in KFLOP ie:

 

persist.UserData[xxx] = LAST_COUNT:

 

KMotionCNC allows an Action to be performed on start up.  You might make this Compile (including the include file), download, and execute some program to recover the previous count.

 

Let me know how much of this makes sense.

 

Regards

TK

 

 

 


From: "'Eon de Koker' eondekoker@... [DynoMotion]" <DynoMotion@yahoogroups.com>
To: DynoMotion@yahoogroups.com
Sent: Tuesday, August 4, 2015 11:38 AM
Subject: RE: [DynoMotion] Using KFlop for machine automation

 

 

Hi

 

As SJH suggested, I can write the equivalent on the G-Code in one C program. But I am still not clear on how to do the following:

1)      How to pass parameters to C programs using the Dynomotion Software. I see on the Tool  Setup that there is a VAR field when assigning a programme to a button. Is it possible to pass a parameter to the C program and if so where can I find an example?

2)      Assuming that we will have a PC permanently connected, how can one start a C program or initialise KFLOP with parameters (such as the last value of the counter saved to disk?) from a PC based VB or C# application?

3)      How can the C program pass parameters back to the PC  program(such as the counter value)?

 

Regards

 

Eon

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Monday, 03 August 2015 19:46
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Hi Eon,

 

Do you plan to have the PC connected at all times?  If so I would suggest you might make use of writing to a Disk File for non-volatile storage.  The other option is KFLOP's Flash memory, but that has a limited number of write cycles (10,000 writes minimum (100,000 typical) per each of the 16 64KByte sectors).

 

Regards

TK

 

 


From: "'Eon de Koker' eondekoker@... [DynoMotion]" <DynoMotion@yahoogroups.com>
To: DynoMotion@yahoogroups.com
Sent: Sunday, August 2, 2015 11:53 PM
Subject: RE: [DynoMotion] Using KFlop for machine automation

 

 

Thanks SJH

 

It looks like I need to look at the C programming. I will have a look at the move instructions and the SetBet/ReadBit etc.

 

Any ideas on how to keep counters in Non volatile memory and to read them from a PC app? We need to count the number of cycles, measure the cycle time and then retrieve that in some way from a PC.

 

Regards

 

Eon

 

 

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Sunday, 02 August 2015 21:24
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Well I'm not Tom, but here's what we do which might be of some help to you regarding your first question.

Our machine is a conventional CNC mill, but it can also run in a limited autonomous "manual" mode whether or not there is a PC connected.  Basically, it allows homing and jogging the axes using an MPG handwheel.

The way we have architected it is to put most of the kflop software in a single program running as thread 7, and have that thread configured to run at power-up time.  That program runs all the time (in a loop) and waits for various I/O signals.  When a signal occurs, it runs appropriate routines within itself.

So that takes care of your requirement to automatically INIT at power-up, and you could automatically HOME (or wait for a PLC signal etc. to home).

Actually running G-code autonomously is something we have not required. It currently requires a PC connected and running the interpreter.  Here's a few approaches I would consider, from easiest to hardest:

- If the signal to start the g-code comes from a PLC, then attach the PLC to the PC (somehow) and modify the PC CNC program to execute g-code on command.

- otherwise, if the PLC connects to the kflop, then the kflop can be programmed to signal the PC to start running the g-code.

- forget g-code, and write some kflop C code which directly performs the motion you want (using the Move() functions etc.)  For a robot application, this would not be too difficult since (presumably) you don't need super accurate path following, but reasonably accurate timing and end-points.

- Port the g-code interpreter code to run directly on the kflop.  Thread 7 can run up to 320k of code, so this would be theoretically possible (I once ported the NGC interpreter to a device with only 256k flash memory).  The g-code would also need to be flashed in, as a big string constant.

One advantage of getting rid of g-code is that the full power and versatility of C may be brought to bear, and you can completely ditch the PC and its associated MTBF.  As you are aware, g-code has very limited ability to react to real-world conditions.  If your application has any sort of feedback (such as force sensors, proximity detectors etc.) then C would be a good choice. 

The down-side is the amount of engineering man-power required for development and maintenance.  It's hard to compare apples and oranges, but from our experience implementing touch probing routines, C emulating g-code takes 5-20 x the effort of real g-code.  (We split our probing into a C routine which takes care of the math and low-level choreography for probing the center of a sphere, and a g-code program which coordinates multiple sphere probes - this seemed the optimum split for our requirements).

Maybe I'm biassed as a C programmer, but I find C code to be more maintainable and understandable than the equivalent g-code.  Compare these:

g-code:

#45 = [atan[#38+#14]/[#37] + #16]

C:

a_angle = RAD_TO_DEG(atan2(pos_y + offset_y, pos_x)) + offset_a;

QED :-)

 

Regards,

SJH

 

On Sun, Aug 2, 2015 at 4:09 AM, eondekoker@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:

 

Hi Tom

 

We are building an robot for doing packaging and we have the basics running in G-Code. We need to do the following next and need to know what would be the best strategy:

1) Using the G-code screen is fine for prototyping. But ideally we would like the machine to operate autonomously without requiring the operator to Press buttons for Init, Home and to start the G-code. What would be the best way to do this?

2) We would like to keep some statistics such as a counter and time stamp on the number of operations. One can define parameters in G code for counting but is there a way to do the time stamp and write this to a file? What would be the best way to do this?

 

 

 

Group: DynoMotion Message: 12066 From: Tom Kerekes Date: 8/4/2015
Subject: Re: Using KFlop for machine automation
Hi Eon,

I don't understand.  Are you writing a C# PC application or are you using KMotionCNC?

It is easy to do most anything to KFLOP from C# including getting/setting Persist variables using Console Script commands (ie GetPersistDec/SetPersistDec) or other methods.

Regards
TK

Group: DynoMotion Message: 12067 From: Eon de Koker Date: 8/4/2015
Subject: Re: Using KFlop for machine automation

Tom

I was initially using the G-code commands in the Dynomotion software, for testing and debugging. I was exploring how to communicate between a PC and KFlop using G-commands as it would be have been easier to add. I saw there were some CMD and BUF instructions which could be used in G-code.

From the comments it seems that it would be better but more difficult to code the equivalent of the G-Code in C and then pass parameters between the two using Persist. I will have a look at doing that with the Console Script Commands.

Regards

Eon

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Tuesday, 04 August 2015 22:56
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Hi Eon,

 

I don't understand.  Are you writing a C# PC application or are you using KMotionCNC?

 

It is easy to do most anything to KFLOP from C# including getting/setting Persist variables using Console Script commands (ie GetPersistDec/SetPersistDec) or other methods.

 

Regards

TK

 


From: "'Eon de Koker' eondekoker@... [DynoMotion]" <DynoMotion@yahoogroups.com>
To: DynoMotion@yahoogroups.com
Sent: Tuesday, August 4, 2015 1:17 PM
Subject: RE: [DynoMotion] Using KFlop for machine automation

 

 

Hi Tom and SJH

 

Thanks. Let me see if I understood you correctly:

1)      KFlop can write to a file on the PC. I see there is a WriteFile.c example. So data output of the counter from C to the PC is fine

2)      For data input I see there is a UserPersist Array. I see there are examples of using the array (GetPersist and SetPersist) in the C program. Also, I see that the M commands in G-code can be set up with an action referencing the UserPersist Array number.  The missing component is how to get/set the UserPersist Array value from C#. Is there an example for this?

 

 

Regards

 

Eon

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Tuesday, 04 August 2015 21:21
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Hi Eon,

 

For KFLOP to have access to the PC Disk some application (like KMotionCNC) must be running for the KFLOP requests to be somehow handled.

 

KFLOP can currently perform write operations to the PC Disk using fopen, fprintf, fclose calls.  But can not directly read (writes are easier as they can be simply pushed out through the data pipeline to the PC, where reads require round trip communications, handshaking, and delays).  We are working on adding fgets read disk calls for some future release.

 

However another way to indirectly read from disk is to include a file in a C Program as C Statements.  In this way the data is compiled right into the C Program and downloaded to KFLOP.  For example you might write your last Count to a file as:

 

#define LAST_COUNT 12345

 

Then include that into a C Program and make use of it to initialize a Count in KFLOP ie:

 

persist.UserData[xxx] = LAST_COUNT:

 

KMotionCNC allows an Action to be performed on start up.  You might make this Compile (including the include file), download, and execute some program to recover the previous count.

 

Let me know how much of this makes sense.

 

Regards

TK

 

 

 


From: "'Eon de Koker' eondekoker@... [DynoMotion]" <DynoMotion@yahoogroups.com>
To: DynoMotion@yahoogroups.com
Sent: Tuesday, August 4, 2015 11:38 AM
Subject: RE: [DynoMotion] Using KFlop for machine automation

 

 

Hi

 

As SJH suggested, I can write the equivalent on the G-Code in one C program. But I am still not clear on how to do the following:

1)      How to pass parameters to C programs using the Dynomotion Software. I see on the Tool  Setup that there is a VAR field when assigning a programme to a button. Is it possible to pass a parameter to the C program and if so where can I find an example?

2)      Assuming that we will have a PC permanently connected, how can one start a C program or initialise KFLOP with parameters (such as the last value of the counter saved to disk?) from a PC based VB or C# application?

3)      How can the C program pass parameters back to the PC  program(such as the counter value)?

 

Regards

 

Eon

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Monday, 03 August 2015 19:46
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Hi Eon,

 

Do you plan to have the PC connected at all times?  If so I would suggest you might make use of writing to a Disk File for non-volatile storage.  The other option is KFLOP's Flash memory, but that has a limited number of write cycles (10,000 writes minimum (100,000 typical) per each of the 16 64KByte sectors).

 

Regards

TK

 

 


From: "'Eon de Koker' eondekoker@... [DynoMotion]" <DynoMotion@yahoogroups.com>
To: DynoMotion@yahoogroups.com
Sent: Sunday, August 2, 2015 11:53 PM
Subject: RE: [DynoMotion] Using KFlop for machine automation

 

 

Thanks SJH

 

It looks like I need to look at the C programming. I will have a look at the move instructions and the SetBet/ReadBit etc.

 

Any ideas on how to keep counters in Non volatile memory and to read them from a PC app? We need to count the number of cycles, measure the cycle time and then retrieve that in some way from a PC.

 

Regards

 

Eon

 

 

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com]
Sent: Sunday, 02 August 2015 21:24
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Using KFlop for machine automation

 

 

Well I'm not Tom, but here's what we do which might be of some help to you regarding your first question.

Our machine is a conventional CNC mill, but it can also run in a limited autonomous "manual" mode whether or not there is a PC connected.  Basically, it allows homing and jogging the axes using an MPG handwheel.

The way we have architected it is to put most of the kflop software in a single program running as thread 7, and have that thread configured to run at power-up time.  That program runs all the time (in a loop) and waits for various I/O signals.  When a signal occurs, it runs appropriate routines within itself.

So that takes care of your requirement to automatically INIT at power-up, and you could automatically HOME (or wait for a PLC signal etc. to home).

Actually running G-code autonomously is something we have not required. It currently requires a PC connected and running the interpreter.  Here's a few approaches I would consider, from easiest to hardest:

- If the signal to start the g-code comes from a PLC, then attach the PLC to the PC (somehow) and modify the PC CNC program to execute g-code on command.

- otherwise, if the PLC connects to the kflop, then the kflop can be programmed to signal the PC to start running the g-code.

- forget g-code, and write some kflop C code which directly performs the motion you want (using the Move() functions etc.)  For a robot application, this would not be too difficult since (presumably) you don't need super accurate path following, but reasonably accurate timing and end-points.

- Port the g-code interpreter code to run directly on the kflop.  Thread 7 can run up to 320k of code, so this would be theoretically possible (I once ported the NGC interpreter to a device with only 256k flash memory).  The g-code would also need to be flashed in, as a big string constant.

One advantage of getting rid of g-code is that the full power and versatility of C may be brought to bear, and you can completely ditch the PC and its associated MTBF.  As you are aware, g-code has very limited ability to react to real-world conditions.  If your application has any sort of feedback (such as force sensors, proximity detectors etc.) then C would be a good choice. 

The down-side is the amount of engineering man-power required for development and maintenance.  It's hard to compare apples and oranges, but from our experience implementing touch probing routines, C emulating g-code takes 5-20 x the effort of real g-code.  (We split our probing into a C routine which takes care of the math and low-level choreography for probing the center of a sphere, and a g-code program which coordinates multiple sphere probes - this seemed the optimum split for our requirements).

Maybe I'm biassed as a C programmer, but I find C code to be more maintainable and understandable than the equivalent g-code.  Compare these:

g-code:

#45 = [atan[#38+#14]/[#37] + #16]

C:

a_angle = RAD_TO_DEG(atan2(pos_y + offset_y, pos_x)) + offset_a;

QED :-)

 

Regards,

SJH

 

On Sun, Aug 2, 2015 at 4:09 AM, eondekoker@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:

 

Hi Tom

 

We are building an robot for doing packaging and we have the basics running in G-Code. We need to do the following next and need to know what would be the best strategy:

1) Using the G-code screen is fine for prototyping. But ideally we would like the machine to operate autonomously without requiring the operator to Press buttons for Init, Home and to start the G-code. What would be the best way to do this?

2) We would like to keep some statistics such as a counter and time stamp on the number of operations. One can define parameters in G code for counting but is there a way to do the time stamp and write this to a file? What would be the best way to do this?